2 * Copyright (C) 2023 by Claudio Cambra <claudio.cambra@nextcloud.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 import NextcloudFileProviderKit
21 extension FileProviderExtension: NSFileProviderThumbnailing {
23 for itemIdentifiers: [NSFileProviderItemIdentifier],
24 requestedSize size: CGSize,
25 perThumbnailCompletionHandler: @escaping (
26 NSFileProviderItemIdentifier,
30 completionHandler: @escaping (Error?) -> Void
32 return NextcloudFileProviderKit.fetchThumbnails(
35 usingRemoteInterface: self.ncKit,
36 perThumbnailCompletionHandler: perThumbnailCompletionHandler,
37 completionHandler: completionHandler